home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
comms
/
internet
/
html-related
/
aha!
/
arexx
/
ttext2ibrowse.rexx
< prev
Wrap
OS/2 REXX Batch file
|
1996-09-09
|
385b
|
21 lines
/* This script sends current Turbotext document as a URL to IBrowse. It's used from the HTML
ToolManager to test visually the current file.
Written on 09/06/96 by Oleg Moskalensky
*/
/* trace ?r */
OPTIONS RESULTS
address 'TURBOTEXT0'
'SaveFile' QUIET
'GetFilePath'
Filename = RESULT
'Screen2Back'
address 'IBROWSE'
URL = "file://localhost/" || Filename
gotourl URL
exit 0